home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gsjerror.h < prev    next >
C/C++ Source or Header  |  1994-10-04  |  15KB  |  384 lines

  1. /*
  2.  * jerror.h
  3.  *
  4.  * Copyright (C) 1994, Thomas G. Lane.
  5.  * This file is part of the Independent JPEG Group's software.
  6.  * For conditions of distribution and use, see the accompanying README file.
  7.  *
  8.  * This file defines the error and message codes for the JPEG library.
  9.  * Edit this file to add new codes, or to translate the message strings to
  10.  * some other language.
  11.  * A set of error-reporting macros are defined too.  Some applications using
  12.  * the JPEG library may wish to include this file to get the error codes
  13.  * and/or the macros.
  14.  */
  15.  
  16.  
  17. /* To define the enum list of message codes, include this file without
  18.  * defining JMAKE_MSG_TABLE.  To create the message string table, include it
  19.  * again with JMAKE_MSG_STRINGS defined, and then yet again with
  20.  * JMAKE_MSG_TABLE defined (this should be done in just one module).
  21.  */
  22.  
  23. #ifdef JMAKE_MSG_TABLE
  24.  
  25. /*
  26.  * The following doesn't work, because jpeg_message_table is also
  27.  * the name a member of the jpeg_error_mgr structure.
  28.  */
  29. #ifdef NEED_SHORT_EXTERNAL_NAMES
  30. #define jpeg_message_table    jMsgTable
  31. #endif
  32.  
  33. const char far_data * const far_data jpeg_message_table[] = {
  34.  
  35. #define JMESSAGE(code,strvar,string)    strvar ,
  36.  
  37. #else /* not JMAKE_MSG_TABLE */
  38.  
  39. #ifdef JMAKE_MSG_STRINGS
  40.  
  41. #define JMESSAGE(code,strvar,string)    const char far_data strvar[] = string;
  42.  
  43. #else /* not JMAKE_MSG_STRINGS, not JMAKE_MSG_TABLE */
  44.  
  45. typedef enum {
  46.  
  47. #define JMESSAGE(code,strvar,string)    code ,
  48.  
  49. #endif /* JMAKE_MSG_STRINGS */
  50.  
  51. #endif /* JMAKE_MSG_TABLE */
  52.  
  53. JMESSAGE(JMSG_NOMESSAGE, str_JMSG_NOMESSAGE,
  54.      "Bogus message code %d") /* Must be first entry! */
  55.  
  56. /* For maintenance convenience, list is alphabetical by message code name */
  57. JMESSAGE(JERR_ARITH_NOTIMPL, str_JERR_ARITH_NOTIMPL,
  58.      "Sorry, there are legal restrictions on arithmetic coding")
  59. JMESSAGE(JERR_BAD_ALIGN_TYPE, str_JERR_BAD_ALIGN_TYPE,
  60.      "ALIGN_TYPE is wrong, please fix")
  61. JMESSAGE(JERR_BAD_ALLOC_CHUNK, str_JERR_BAD_ALLOC_CHUNK,
  62.      "MAX_ALLOC_CHUNK is wrong, please fix")
  63. JMESSAGE(JERR_BAD_BUFFER_MODE, str_JERR_BAD_BUFFER_MODE,
  64.      "Bogus buffer control mode")
  65. JMESSAGE(JERR_BAD_COMPONENT_ID, str_JERR_BAD_COMPONENT_ID,
  66.      "Invalid component ID %d in SOS")
  67. JMESSAGE(JERR_BAD_DCTSIZE, str_JERR_BAD_DCTSIZE,
  68.      "IDCT output block size %d not supported")
  69. JMESSAGE(JERR_BAD_IN_COLORSPACE, str_JERR_BAD_IN_COLORSPACE,
  70.      "Bogus input colorspace")
  71. JMESSAGE(JERR_BAD_J_COLORSPACE, str_JERR_BAD_J_COLORSPACE,
  72.      "Bogus JPEG colorspace")
  73. JMESSAGE(JERR_BAD_LENGTH, str_JERR_BAD_LENGTH,
  74.      "Bogus marker length")
  75. JMESSAGE(JERR_BAD_MCU_SIZE, str_JERR_BAD_MCU_SIZE,
  76.      "Sampling factors too large for interleaved scan")
  77. JMESSAGE(JERR_BAD_POOL_ID, str_JERR_BAD_POOL_ID,
  78.      "Invalid memory pool code %d")
  79. JMESSAGE(JERR_BAD_PRECISION, str_JERR_BAD_PRECISION,
  80.      "Unsupported JPEG data precision %d")
  81. JMESSAGE(JERR_BAD_SAMPLING, str_JERR_BAD_SAMPLING,
  82.      "Bogus sampling factors")
  83. JMESSAGE(JERR_BAD_STATE, str_JERR_BAD_STATE,
  84.      "Improper call to JPEG library in state %d")
  85. JMESSAGE(JERR_BAD_VIRTUAL_ACCESS, str_JERR_BAD_VIRTUAL_ACCESS,
  86.      "Bogus virtual array access")
  87. JMESSAGE(JERR_BUFFER_SIZE, str_JERR_BUFFER_SIZE,
  88.      "Buffer passed to JPEG library is too small")
  89. JMESSAGE(JERR_CANT_SUSPEND, str_JERR_CANT_SUSPEND,
  90.      "Suspension not allowed here")
  91. JMESSAGE(JERR_CCIR601_NOTIMPL, str_JERR_CCIR601_NOTIMPL,
  92.      "CCIR601 sampling not implemented yet")
  93. JMESSAGE(JERR_COMPONENT_COUNT, str_JERR_COMPONENT_COUNT,
  94.      "Too many color components: %d, max %d")
  95. JMESSAGE(JERR_CONVERSION_NOTIMPL, str_JERR_CONVERSION_NOTIMPL,
  96.      "Unsupported color conversion request")
  97. JMESSAGE(JERR_DAC_INDEX, str_JERR_DAC_INDEX,
  98.      "Bogus DAC index %d")
  99. JMESSAGE(JERR_DAC_VALUE, str_JERR_DAC_VALUE,
  100.      "Bogus DAC value 0x%x")
  101. JMESSAGE(JERR_DHT_COUNTS, str_JERR_DHT_COUNTS,
  102.      "Bogus DHT counts")
  103. JMESSAGE(JERR_DHT_INDEX, str_JERR_DHT_INDEX,
  104.      "Bogus DHT index %d")
  105. JMESSAGE(JERR_DQT_INDEX, str_JERR_DQT_INDEX,
  106.      "Bogus DQT index %d")
  107. JMESSAGE(JERR_EMPTY_IMAGE, str_JERR_EMPTY_IMAGE,
  108.      "Empty JPEG image (DNL not supported)")
  109. JMESSAGE(JERR_EMS_READ, str_JERR_EMS_READ,
  110.      "Read from EMS failed")
  111. JMESSAGE(JERR_EMS_WRITE, str_JERR_EMS_WRITE,
  112.      "Write to EMS failed")
  113. JMESSAGE(JERR_EOI_EXPECTED, str_JERR_EOI_EXPECTED,
  114.      "Didn't expect more than one scan")
  115. JMESSAGE(JERR_FILE_READ, str_JERR_FILE_READ,
  116.      "Input file read error")
  117. JMESSAGE(JERR_FILE_WRITE, str_JERR_FILE_WRITE,
  118.      "Output file write error --- out of disk space?")
  119. JMESSAGE(JERR_FRACT_SAMPLE_NOTIMPL, str_JERR_FRACT_SAMPLE_NOTIMPL,
  120.      "Fractional sampling not implemented yet")
  121. JMESSAGE(JERR_HUFF_CLEN_OVERFLOW, str_JERR_HUFF_CLEN_OVERFLOW,
  122.      "Huffman code size table overflow")
  123. JMESSAGE(JERR_HUFF_MISSING_CODE, str_JERR_HUFF_MISSING_CODE,
  124.      "Missing Huffman code table entry")
  125. JMESSAGE(JERR_IMAGE_TOO_BIG, str_JERR_IMAGE_TOO_BIG,
  126.      "Maximum supported image dimension is %u pixels")
  127. JMESSAGE(JERR_INPUT_EMPTY, str_JERR_INPUT_EMPTY,
  128.      "Empty input file")
  129. JMESSAGE(JERR_INPUT_EOF, str_JERR_INPUT_EOF,
  130.      "Premature end of input file")
  131. JMESSAGE(JERR_JFIF_MAJOR, str_JERR_JFIF_MAJOR,
  132.      "Unsupported JFIF revision number %d.%02d")
  133. JMESSAGE(JERR_NOTIMPL, str_JERR_NOTIMPL,
  134.      "Not implemented yet")
  135. JMESSAGE(JERR_NOT_COMPILED, str_JERR_NOT_COMPILED,
  136.      "Requested feature was omitted at compile time")
  137. JMESSAGE(JERR_NO_BACKING_STORE, str_JERR_NO_BACKING_STORE,
  138.      "Backing store not supported")
  139. JMESSAGE(JERR_NO_HUFF_TABLE, str_JERR_NO_HUFF_TABLE,
  140.      "Huffman table 0x%02x was not defined")
  141. JMESSAGE(JERR_NO_IMAGE, str_JERR_NO_IMAGE,
  142.      "JPEG datastream contains no image")
  143. JMESSAGE(JERR_NO_QUANT_TABLE, str_JERR_NO_QUANT_TABLE,
  144.      "Quantization table 0x%02x was not defined")
  145. JMESSAGE(JERR_NO_SOI, str_JERR_NO_SOI,
  146.      "Not a JPEG file: starts with 0x%02x 0x%02x")
  147. JMESSAGE(JERR_OUT_OF_MEMORY, str_JERR_OUT_OF_MEMORY,
  148.      "Insufficient memory (case %d)")
  149. JMESSAGE(JERR_QUANT_COMPONENTS, str_JERR_QUANT_COMPONENTS,
  150.      "Cannot quantize more than %d color components")
  151. JMESSAGE(JERR_QUANT_FEW_COLORS, str_JERR_QUANT_FEW_COLORS,
  152.      "Cannot quantize to fewer than %d colors")
  153. JMESSAGE(JERR_QUANT_MANY_COLORS, str_JERR_QUANT_MANY_COLORS,
  154.      "Cannot quantize to more than %d colors")
  155. JMESSAGE(JERR_SOF_DUPLICATE, str_JERR_SOF_DUPLICATE,
  156.      "Invalid JPEG file structure: two SOF markers")
  157. JMESSAGE(JERR_SOF_NO_SOS, str_JERR_SOF_NO_SOS,
  158.      "Invalid JPEG file structure: missing SOS marker")
  159. JMESSAGE(JERR_SOF_UNSUPPORTED, str_JERR_SOF_UNSUPPORTED,
  160.      "Unsupported JPEG process: SOF type 0x%02x")
  161. JMESSAGE(JERR_SOI_DUPLICATE, str_JERR_SOI_DUPLICATE,
  162.      "Invalid JPEG file structure: two SOI markers")
  163. JMESSAGE(JERR_SOS_NO_SOF, str_JERR_SOS_NO_SOF,
  164.      "Invalid JPEG file structure: SOS before SOF")
  165. JMESSAGE(JERR_TFILE_CREATE, str_JERR_TFILE_CREATE,
  166.      "Failed to create temporary file %s")
  167. JMESSAGE(JERR_TFILE_READ, str_JERR_TFILE_READ,
  168.      "Read failed on temporary file")
  169. JMESSAGE(JERR_TFILE_SEEK, str_JERR_TFILE_SEEK,
  170.      "Seek failed on temporary file")
  171. JMESSAGE(JERR_TFILE_WRITE, str_JERR_TFILE_WRITE,
  172.      "Write failed on temporary file --- out of disk space?")
  173. JMESSAGE(JERR_TOO_LITTLE_DATA, str_JERR_TOO_LITTLE_DATA,
  174.      "Application transferred too few scanlines")
  175. JMESSAGE(JERR_UNKNOWN_MARKER, str_JERR_UNKNOWN_MARKER,
  176.      "Unsupported marker type 0x%02x")
  177. JMESSAGE(JERR_VIRTUAL_BUG, str_JERR_VIRTUAL_BUG,
  178.      "Virtual array controller messed up")
  179. JMESSAGE(JERR_WIDTH_OVERFLOW, str_JERR_WIDTH_OVERFLOW,
  180.      "Image too wide for this implementation")
  181. JMESSAGE(JERR_XMS_READ, str_JERR_XMS_READ,
  182.      "Read from XMS failed")
  183. JMESSAGE(JERR_XMS_WRITE, str_JERR_XMS_WRITE,
  184.      "Write to XMS failed")
  185. JMESSAGE(JMSG_COPYRIGHT, str_JMSG_COPYRIGHT,
  186.      JCOPYRIGHT)
  187. JMESSAGE(JMSG_VERSION, str_JMSG_VERSION,
  188.      JVERSION)
  189. JMESSAGE(JTRC_16BIT_TABLES, str_JTRC_16BIT_TABLES,
  190.      "Caution: quantization tables are too coarse for baseline JPEG")
  191. JMESSAGE(JTRC_ADOBE, str_JTRC_ADOBE,
  192.      "Adobe APP14 marker: version %d, flags 0x%04x 0x%04x, transform %d")
  193. JMESSAGE(JTRC_APP0, str_JTRC_APP0,
  194.      "Unknown APP0 marker (not JFIF), length %u")
  195. JMESSAGE(JTRC_APP14, str_JTRC_APP14,
  196.      "Unknown APP14 marker (not Adobe), length %u")
  197. JMESSAGE(JTRC_DAC, str_JTRC_DAC,
  198.      "Define Arithmetic Table 0x%02x: 0x%02x")
  199. JMESSAGE(JTRC_DHT, str_JTRC_DHT,
  200.      "Define Huffman Table 0x%02x")
  201. JMESSAGE(JTRC_DQT, str_JTRC_DQT,
  202.      "Define Quantization Table %d  precision %d")
  203. JMESSAGE(JTRC_DRI, str_JTRC_DRI,
  204.      "Define Restart Interval %u")
  205. JMESSAGE(JTRC_EMS_CLOSE, str_JTRC_EMS_CLOSE,
  206.      "Freed EMS handle %u")
  207. JMESSAGE(JTRC_EMS_OPEN, str_JTRC_EMS_OPEN,
  208.      "Obtained EMS handle %u")
  209. JMESSAGE(JTRC_EOI, str_JTRC_EOI,
  210.      "End Of Image")
  211. JMESSAGE(JTRC_HUFFBITS, str_JTRC_HUFFBITS,
  212.      "        %3d %3d %3d %3d %3d %3d %3d %3d")
  213. JMESSAGE(JTRC_JFIF, str_JTRC_JFIF,
  214.      "JFIF APP0 marker, density %dx%d  %d")
  215. JMESSAGE(JTRC_JFIF_BADTHUMBNAILSIZE, str_JTRC_JFIF_BADTHUMBNAILSIZE,
  216.      "Warning: thumbnail image size does not match data length %u")
  217. JMESSAGE(JTRC_JFIF_MINOR, str_JTRC_JFIF_MINOR,
  218.      "Warning: unknown JFIF revision number %d.%02d")
  219. JMESSAGE(JTRC_JFIF_THUMBNAIL, str_JTRC_JFIF_THUMBNAIL,
  220.      "    with %d x %d thumbnail image")
  221. JMESSAGE(JTRC_MISC_MARKER, str_JTRC_MISC_MARKER,
  222.      "Skipping marker 0x%02x, length %u")
  223. JMESSAGE(JTRC_PARMLESS_MARKER, str_JTRC_PARMLESS_MARKER,
  224.      "Unexpected marker 0x%02x")
  225. JMESSAGE(JTRC_QUANTVALS, str_JTRC_QUANTVALS,
  226.      "        %4u %4u %4u %4u %4u %4u %4u %4u")
  227. JMESSAGE(JTRC_QUANT_3_NCOLORS, str_JTRC_QUANT_3_NCOLORS,
  228.      "Quantizing to %d = %d*%d*%d colors")
  229. JMESSAGE(JTRC_QUANT_NCOLORS, str_JTRC_QUANT_NCOLORS,
  230.      "Quantizing to %d colors")
  231. JMESSAGE(JTRC_QUANT_SELECTED, str_JTRC_QUANT_SELECTED,
  232.      "Selected %d colors for quantization")
  233. JMESSAGE(JTRC_RECOVERY_ACTION, str_JTRC_RECOVERY_ACTION,
  234.      "At marker 0x%02x, recovery action %d")
  235. JMESSAGE(JTRC_RST, str_JTRC_RST,
  236.      "RST%d")
  237. JMESSAGE(JTRC_SMOOTH_NOTIMPL, str_JTRC_SMOOTH_NOTIMPL,
  238.      "Smoothing not supported with nonstandard sampling ratios")
  239. JMESSAGE(JTRC_SOF, str_JTRC_SOF,
  240.      "Start Of Frame 0x%02x: width=%u, height=%u, components=%d")
  241. JMESSAGE(JTRC_SOF_COMPONENT, str_JTRC_SOF_COMPONENT,
  242.      "    Component %d: %dhx%dv q=%d")
  243. JMESSAGE(JTRC_SOI, str_JTRC_SOI,
  244.      "Start of Image")
  245. JMESSAGE(JTRC_SOS, str_JTRC_SOS,
  246.      "Start Of Scan: %d components")
  247. JMESSAGE(JTRC_SOS_COMPONENT, str_JTRC_SOS_COMPONENT,
  248.      "    Component %d: dc=%d ac=%d")
  249. JMESSAGE(JTRC_TFILE_CLOSE, str_JTRC_TFILE_CLOSE,
  250.      "Closed temporary file %s")
  251. JMESSAGE(JTRC_TFILE_OPEN, str_JTRC_TFILE_OPEN,
  252.      "Opened temporary file %s")
  253. JMESSAGE(JTRC_UNKNOWN_IDS, str_JTRC_UNKNOWN_IDS,
  254.      "Unrecognized component IDs %d %d %d, assuming YCbCr")
  255. JMESSAGE(JTRC_XMS_CLOSE, str_JTRC_XMS_CLOSE,
  256.      "Freed XMS handle %u")
  257. JMESSAGE(JTRC_XMS_OPEN, str_JTRC_XMS_OPEN,
  258.      "Obtained XMS handle %u")
  259. JMESSAGE(JWRN_ADOBE_XFORM, str_JWRN_ADOBE_XFORM,
  260.      "Unknown Adobe color transform code %d")
  261. JMESSAGE(JWRN_EXTRANEOUS_DATA, str_JWRN_EXTRANEOUS_DATA,
  262.      "Corrupt JPEG data: %u extraneous bytes before marker 0x%02x")
  263. JMESSAGE(JWRN_HIT_MARKER, str_JWRN_HIT_MARKER,
  264.      "Corrupt JPEG data: premature end of data segment")
  265. JMESSAGE(JWRN_HUFF_BAD_CODE, str_JWRN_HUFF_BAD_CODE,
  266.      "Corrupt JPEG data: bad Huffman code")
  267. JMESSAGE(JWRN_JPEG_EOF, str_JWRN_JPEG_EOF,
  268.      "Premature end of JPEG file")
  269. JMESSAGE(JWRN_MUST_RESYNC, str_JWRN_MUST_RESYNC,
  270.      "Corrupt JPEG data: found marker 0x%02x instead of RST%d")
  271. JMESSAGE(JWRN_NOT_SEQUENTIAL, str_JWRN_NOT_SEQUENTIAL,
  272.      "Invalid SOS parameters for sequential JPEG")
  273. JMESSAGE(JWRN_TOO_MUCH_DATA, str_JWRN_TOO_MUCH_DATA,
  274.      "Application transferred too many scanlines")
  275.  
  276. #ifdef JMAKE_MSG_TABLE
  277.  
  278.   NULL
  279. };
  280.  
  281. #else /* not JMAKE_MSG_TABLE */
  282.  
  283. #ifndef JMAKE_MSG_STRINGS
  284.  
  285.   JMSG_LASTMSGCODE
  286. } J_MESSAGE_CODE;
  287.  
  288. #endif /* JMAKE_MSG_STRINGS */
  289.  
  290. #endif /* JMAKE_MSG_TABLE */
  291.  
  292. #undef JMESSAGE
  293.  
  294.  
  295. #ifndef JMAKE_MSG_TABLE
  296. #ifndef JMAKE_MSG_STRINGS
  297.  
  298. /* Macros to simplify using the error and trace message stuff */
  299. /* The first parameter is either type of cinfo pointer */
  300.  
  301. /* Fatal errors (print message and exit) */
  302. #define ERREXIT(cinfo,code)  \
  303.   ((cinfo)->err->msg_code = (code), \
  304.    (*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo)))
  305. #define ERREXIT1(cinfo,code,p1)  \
  306.   ((cinfo)->err->msg_code = (code), \
  307.    (cinfo)->err->msg_parm.i[0] = (p1), \
  308.    (*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo)))
  309. #define ERREXIT2(cinfo,code,p1,p2)  \
  310.   ((cinfo)->err->msg_code = (code), \
  311.    (cinfo)->err->msg_parm.i[0] = (p1), \
  312.    (cinfo)->err->msg_parm.i[1] = (p2), \
  313.    (*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo)))
  314. #define ERREXIT3(cinfo,code,p1,p2,p3)  \
  315.   ((cinfo)->err->msg_code = (code), \
  316.    (cinfo)->err->msg_parm.i[0] = (p1), \
  317.    (cinfo)->err->msg_parm.i[1] = (p2), \
  318.    (cinfo)->err->msg_parm.i[2] = (p3), \
  319.    (*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo)))
  320. #define ERREXIT4(cinfo,code,p1,p2,p3,p4)  \
  321.   ((cinfo)->err->msg_code = (code), \
  322.    (cinfo)->err->msg_parm.i[0] = (p1), \
  323.    (cinfo)->err->msg_parm.i[1] = (p2), \
  324.    (cinfo)->err->msg_parm.i[2] = (p3), \
  325.    (cinfo)->err->msg_parm.i[3] = (p4), \
  326.    (*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo)))
  327. #define ERREXITS(cinfo,code,str)  \
  328.   ((cinfo)->err->msg_code = (code), \
  329.    strncpy((cinfo)->err->msg_parm.s, (str), JMSG_STR_PARM_MAX), \
  330.    (*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo)))
  331.  
  332. #define MAKESTMT(stuff)        do { stuff } while (0)
  333.  
  334. /* Nonfatal errors (we can keep going, but the data is probably corrupt) */
  335. #define WARNMS(cinfo,code)  \
  336.   ((cinfo)->err->msg_code = (code), \
  337.    (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), -1))
  338. #define WARNMS1(cinfo,code,p1)  \
  339.   ((cinfo)->err->msg_code = (code), \
  340.    (cinfo)->err->msg_parm.i[0] = (p1), \
  341.    (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), -1))
  342. #define WARNMS2(cinfo,code,p1,p2)  \
  343.   ((cinfo)->err->msg_code = (code), \
  344.    (cinfo)->err->msg_parm.i[0] = (p1), \
  345.    (cinfo)->err->msg_parm.i[1] = (p2), \
  346.    (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), -1))
  347.  
  348. /* Informational/debugging messages */
  349. #define TRACEMS(cinfo,lvl,code)  \
  350.   ((cinfo)->err->msg_code = (code), \
  351.    (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)))
  352. #define TRACEMS1(cinfo,lvl,code,p1)  \
  353.   ((cinfo)->err->msg_code = (code), \
  354.    (cinfo)->err->msg_parm.i[0] = (p1), \
  355.    (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)))
  356. #define TRACEMS2(cinfo,lvl,code,p1,p2)  \
  357.   ((cinfo)->err->msg_code = (code), \
  358.    (cinfo)->err->msg_parm.i[0] = (p1), \
  359.    (cinfo)->err->msg_parm.i[1] = (p2), \
  360.    (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)))
  361. #define TRACEMS3(cinfo,lvl,code,p1,p2,p3)  \
  362.   MAKESTMT(int * _mp = (cinfo)->err->msg_parm.i; \
  363.        _mp[0] = (p1); _mp[1] = (p2); _mp[2] = (p3); \
  364.        (cinfo)->err->msg_code = (code); \
  365.        (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); )
  366. #define TRACEMS4(cinfo,lvl,code,p1,p2,p3,p4)  \
  367.   MAKESTMT(int * _mp = (cinfo)->err->msg_parm.i; \
  368.        _mp[0] = (p1); _mp[1] = (p2); _mp[2] = (p3); _mp[3] = (p4); \
  369.        (cinfo)->err->msg_code = (code); \
  370.        (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); )
  371. #define TRACEMS8(cinfo,lvl,code,p1,p2,p3,p4,p5,p6,p7,p8)  \
  372.   MAKESTMT(int * _mp = (cinfo)->err->msg_parm.i; \
  373.        _mp[0] = (p1); _mp[1] = (p2); _mp[2] = (p3); _mp[3] = (p4); \
  374.        _mp[4] = (p5); _mp[5] = (p6); _mp[6] = (p7); _mp[7] = (p8); \
  375.        (cinfo)->err->msg_code = (code); \
  376.        (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); )
  377. #define TRACEMSS(cinfo,lvl,code,str)  \
  378.   ((cinfo)->err->msg_code = (code), \
  379.    strncpy((cinfo)->err->msg_parm.s, (str), JMSG_STR_PARM_MAX), \
  380.    (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)))
  381.  
  382. #endif /* JMAKE_MSG_STRINGS */
  383. #endif /* JMAKE_MSG_TABLE */
  384.